home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 428 b | 27 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BAD_REDEFINE2
-
- inherit ANY redefine same_type end;
-
- creation {ANY}
- make
-
- feature {ANY}
-
- make is
- local
- c: like Current;
- do
- check
- c.same_type(Current);
- end;
- end;
-
- same_type(other: GENERAL): BOOLEAN is
- do
- end;
-
- end -- BAD_REDEFINE2
-